Laplace Transform
The process of multiplying a function
by
and then integrating the product
from
0 to
make up a function
of the variable
(if the resulting integral exists) named the Laplace transformation.
Laplace Transform
The Laplace transformation is an operation denoted by the symbol
, which associates with each function
satisfying suitable conditions for
a unique function
called the Laplace transform of
defined by

provided that the limit exists.
Laplace Transform
Sufficient conditions that will guarantee the existence of
are that
be piecewise continuous on
and that
be of exponential order for
A function
is said to be of exponential order if there exist numbers 
and
such that
for
We say that a function
is piecewise continuous if it has only finitely many points of discontinuity over any finite interval and at every point of discontinuity the limit of
exists from both the left and the right.
-
laplace

applies the Laplace transform of
with respect to 
The command is in the
inttrans
package, a collection of commands designed to compute integral transforms.
| > |
restart:MathMaple:-ini(): |
We can define the operator by
|
and  by
|
To facilitate the use of the Laplace transform, these two and more definitions are included in the initialization file.
Linearity of the Laplace Transform
Let
and
be functions whose Laplace transforms exists and
and
are constants. Then
Linearity of the Laplace Transform
| > |
'L'(a*f(t)+b*g(t))=L(a*f(t)+b*g(t)); |
Laplace transforms of some basic functions
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example 1
Use the definition of the Laplace transform to find
a)
, b) 
c)
, d)
Solution
Using definition
|
Direct solution
|
a)
| > |
A:=Int(exp(-s*t)*f(t),t=0..infinity):
A=expand(value(A)); |
|
|
b)
| > |
A:=Int(exp(-s*t)*f(t),t=0..infinity):
A=value(A); |
|
|
c)
| > |
f:=t->piecewise(t>=0 and t<1,1,t>=1 and t<=3,-1): |
| > |
A:=Int(exp(-s*t)*f(t),t=0..infinity):
A=simplify(value(A)); |
|
|
d)
| > |
f:=t->piecewise(t>=0 and t<Pi,sin(t),t>=Pi,2): |
| > |
A:=Int(exp(-s*t)*f(t),t=0..infinity):
A=expand(value(A)); |
|
| > |
'L'(f(t))=expand(F(s)); |
|